home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
AddOns
/
Components
/
TEECHART
/
DELPHI3.EXE
/
%MAINDIR%
/
Examples
/
Delphi3
/
ISAPI CGI and TeeChart
/
TeeISAPI.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-11-17
|
357 b
|
21 lines
library TeeISAPI;
uses
HTTPApp,
ISAPIApp,
UnitMain in 'UnitMain.pas' {WebModule1: TWebModule},
UnitChart in 'UnitChart.pas' {Form2};
{$R *.RES}
exports
GetExtensionVersion,
HttpExtensionProc,
TerminateExtension;
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.